ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / ComboBoxBase<T> Class / IsEditable Property






In This Topic
    IsEditable Property (ComboBoxBase<T>)
    In This Topic
    Gets or sets a value that enables or disables editing of the text in the input element of the ComboBox (defaults to false).
    Syntax
    'Declaration
     
    
    Public Overridable Property IsEditable As System.Boolean
    'Usage
     
    
    Dim instance As ComboBoxBase(Of T)
    Dim value As System.Boolean
     
    instance.IsEditable = value
     
    value = instance.IsEditable
    public virtual System.bool IsEditable {get; set;}
    public read-write property IsEditable: System.Boolean; virtual; 
    public function get,set IsEditable : System.boolean
    public: __property virtual System.bool get_IsEditable();
    public: __property virtual void set_IsEditable( 
       System.bool value
    );
    public:
    virtual property System.bool IsEditable {
       System.bool get();
       void set (    System.bool value);
    }
    See Also